home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / stronghold_swish.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  83 lines

  1. #
  2. # This script was written by Randy Matz <rmatz@ctusa.net>
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_version ("$Revision: 1.5 $");
  8.  script_id(11230);
  9.  script_bugtraq_id(4785);
  10.  name["english"] = "Stronghold Swish";
  11.  name["francais"] = "Stronghold Swish";
  12.  script_name(english:name["english"], francais:name["francais"]);
  13.  
  14.  desc["english"] = "
  15. An information disclosure vulnerability was reported in a 
  16. sample script provided with Red Hat's Stronghold web server. 
  17. A remote user can determine the web root directory path.
  18.  
  19. A remote user can send a request to the Stronghold sample script 
  20. swish to cause the script to reveal the full path to the webroot directory. 
  21.  
  22. Apparently, swish may also display system-specific information in the 
  23. HTML returned by the script
  24.  
  25. Solution : remove it
  26. Risk factor : Low";
  27.  
  28.  script_description(english:desc["english"]);
  29.  summary["english"] = "Checks for the presence of cgi-bin/search";
  30.  summary["francais"] = "VΘrifie la prΘsence de cgi-bin/search";
  31.  script_summary(english:summary["english"], francais:summary["francais"]);
  32.  script_category(ACT_GATHER_INFO);
  33.  script_copyright(english:"This script is Copyright (C) 2003 Randy Matz",
  34.                 francais:"Ce script est Copyright (C) 2003 Randy Matz");
  35.  family["english"] = "CGI abuses";
  36.  family["francais"] = "Abus de CGI";
  37.  script_family(english:family["english"], francais:family["francais"]);
  38.  script_dependencie("find_service.nes", "http_version.nasl");
  39.  script_require_ports("Services/www", 80);
  40.  exit(0);
  41. }
  42.  
  43. #
  44. # The script code starts here
  45. #
  46.  
  47. include("http_func.inc");
  48. include("http_keepalive.inc");
  49.  
  50. port = get_http_port(default:80);
  51.  
  52.  
  53.  
  54.  
  55.  
  56. if (is_cgi_installed_ka(port:port, item:"/search"))
  57. {
  58.   req = http_get(item:"/search", port:port);
  59.   r = http_keepalive_send_recv(port:port, data:req);
  60.   if ( r == NULL ) exit(0);
  61.    if(egrep(pattern:".*sourcedir value=?/.*stronghold.*", string:r))
  62.      {
  63.      security_warning(port);
  64.      exit(0);
  65.      }
  66. }
  67.  
  68.  
  69. foreach dir (cgi_dirs())
  70. {
  71.  if (is_cgi_installed_ka(port:port, item:string(dir, "/search")))
  72.  {
  73.   req = http_get(item:string(dir, "/search"), port:port);
  74.   r = http_keepalive_send_recv(port:port, data:req);
  75.   if(r == NULL)exit(0);
  76.   if(egrep(pattern:"sourcedir value=./.*stronghold.*", string:r))
  77.      {
  78.      security_warning(port);
  79.      exit(0);
  80.      }
  81.   }
  82. }
  83.